The equal-probability principle translates the Boltzmann distribution for a system whose energy is either zero or infinity:
The concept of "equiprobability" often poses problems. Notice that:
In the above picture, equiprobability is a statement in 18 dimensions (dN, with d the dimension and N the number of spheres): The 18-dimensional probability distribution, in Cartesian coordinates, is uniform, but not its lower-dimensional projections.
The equal-probability principle (= the Boltzmann distribution for hard spheres) is valid independent of the boundary conditions.
The equal-probability principle neither contradicts the presence of indirect attraction between particles nor the existence of phase transitions
Random deposition
In random sequential deposition configurations are not equally probable. A simplified one-dimensional discrete hard-rod model allows us to compute deposition probabilities explicitly and show that they are not the same: we suppose that rods may be deposited onto five sites, with a minimum distance of three sites between them. After placing the first rod (with the same probability on all sites), we try again and again until a two rod configuration without overlap is found.
Random deposition of discrete hard rods.
The configurations a and b are thus generated with half the probability of their parent, whereas the configuration c, a unique descendant, inherits all the probability of its parent. We obtain
whereas
This counterexample proves that random deposition is incorrect for hard disks and spheres in any dimension, if the aim is to generate configurations with equal probabilities.
Direct-sampling algorithm: the tabula rasa implementation
(Python code)
fromrandomimport uniform
def dist(x,y):
return(x[0] - y[0])**2 + (x[1] - y[1]) ** 2
N =4
sigma =0.2; sigma_sq = sigma**2
condition =Falsewhile condition ==False:
L =[(uniform(sigma,1 - sigma), uniform(sigma,1 - sigma))]for k inrange(1,N):
b =(uniform(sigma,1 - sigma), uniform(sigma,1 - sigma))
min_dist =min(dist(b, x)for x in L)if min_dist <4 * sigma_sq:
condition =Falsebreakelse:
L.append(b)
condition =Trueprint L
Markov-chain sampling: the "adult game"
Local Metropolis algorithm (Python code)
fromrandomimport uniform as ran, choice
L =[(0.25,0.25),(0.75,0.25),(0.25,0.75),(0.75,0.75)]
sigma =0.20; sigma_sq = sigma**2
delta =0.15foriterinrange(100000):
a = choice(L)
L.remove(a)
b =(a[0] + ran(-delta, delta), a[1] + ran(-delta, delta))
min_dist =min((b[0] - x[0]) ** 2 + (b[1] - x[1]) ** 2for x in L)
box_cond =min(b[0],b[1])< sigma ormax(b[0], b[1])>1 - sigma
if box_cond or min_dist <4 * sigma ** 2:
L.append(a)else:
L.append(b)print L
Acceptance rate
ERRATUM: the solid line corresponds to a direct sampling simulation, not a Markov chain
Equivalence between Monte Carlo algorithm and molecular dynamics
The Boltzmann distribution describes physical reality, as we all know. But for any decades it was unclear whether this could actually be proven, or was more like an axiom of statistical mechanics. The mentioned mathematical papers by Sinai (1970) and by Simanyi (2003) have proven the exact validity of equipartition for finite hard-disk systems.
Hard Sphere Monte Carlo Algorithms
Monte Carlo Algorithms
Equiprobability
The equal-probability principle translates the Boltzmann distribution for a system whose energy is either zero or infinity:
The concept of "equiprobability" often poses problems. Notice that:
Random deposition
In random sequential deposition configurations are not equally probable. A simplified one-dimensional discrete hard-rod model allows us to compute deposition probabilities explicitly and show that they are not the same: we suppose that rods may be deposited onto five sites, with a minimum distance of three sites between them. After placing the first rod (with the same probability on all sites), we try again and again until a two rod configuration without overlap is found.
The configurations a and b are thus generated with half the probability of their parent, whereas the configuration c, a unique descendant, inherits all the probability of its parent. We obtain
whereas
This counterexample proves that random deposition is incorrect for hard disks and spheres in any dimension, if the aim is to generate configurations with equal probabilities.
Direct-sampling algorithm: the tabula rasa implementation
(Python code)
Markov-chain sampling: the "adult game"
Local Metropolis algorithm (Python code)
Acceptance rate
Equivalence between Monte Carlo algorithm and molecular dynamics
The Boltzmann distribution describes physical reality, as we all know. But for any decades it was unclear whether this could actually be proven, or was more like an axiom of statistical mechanics. The mentioned mathematical papers by Sinai (1970) and by Simanyi (2003) have proven the exact validity of equipartition for finite hard-disk systems.
References